home *** CD-ROM | disk | FTP | other *** search
/ Languguage OS 2 / Languguage OS II Version 10-94 (Knowledge Media)(1994).ISO / language / fmpl / readme.fmp < prev   
Text File  |  1994-10-29  |  1KB  |  28 lines

  1. This is an ALPHA RELEASE of FMPL version 2.  It contains many KNOWN PROBLEMS
  2. that will be fixed by the official release; they are listed below.
  3. Patchlevels for the alpha stages of fmpl start at -1 and go down... you
  4. can see them as the binding 'patchlevel' in object ~.
  5.  
  6. -----
  7.  
  8. Much of the old FMPL code hasn't yet been fully rewritten for the
  9. new language.  The only major program in the demo directory that
  10. will work is the multibuffer text editor ("editor.fm").  All the
  11. older files are suffixed with ".old".
  12.  
  13. The garbage collector is turned off (again).  That means that the system
  14. will crash as soon as you run out of space (you can use gcstat() to see
  15. how much space is left).  If this number isn't big enough for your
  16. taste, you can raise it; it's at the start of gc.c.  But basically this
  17. means that the server cannot stay up indefinitely, since any evaluation
  18. is one step closer to crashing the system by memory starvation.
  19.  
  20. The error handling in this version still sucks-- there are no tracebacks
  21. yet.
  22.  
  23. Flags on objects (BLESSED/DEBUG) have not yet been implemented.  This means
  24. that any of the primitives marked BLESSED can still be used by any object,
  25. which is bad if you let someone you don't trust start evaluating things.
  26.  
  27. The documentation is not yet complete.
  28.